Update(int, object)

Method

Namespace: Ignis

Declared in: Ignis.IComponentCollection


Updates the specified entity's component value. It's strongly recommended to use the generic version Update(int, T) instead.

Syntax

public void Update(
	int entityId,
	object value
)

Parameters

entityId

Entity ID

value

New value (must be of type T)


Back to index